home *** CD-ROM | disk | FTP | other *** search
- ;*************************************************************************
- ;* TELEBIT.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC. *
- ;* *
- ;* An ASPECT script file for initializing the TELEBIT TRAILBLAZER PLUS *
- ;* for proper use with PROCOMM PLUS. *
- ;* *
- ;*************************************************************************
-
- CLEAR
- CUROFF
- BOX 0 0 9 60 14
- ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
- ATSAY 3 2 14 "TELEBIT TRAILBLAZER PLUS in all its operational modes,"
- ATSAY 4 2 14 "but the initial setup differs from the setup for ordinary"
- ATSAY 5 2 14 "non-error-correcting modems."
- ATSAY 7 2 14 " <press ENTER to continue>"
- WAIT1:
- IF NOT HITKEY
- GOTO WAIT1
- ENDIF
- CLEAR
- BOX 0 0 17 59 14
- ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
- ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
- ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
- ATSAY 5 2 14 "the actual speed of the connection."
- ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
- ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
- ATSAY 9 2 14 "correcting features. You only need to run it one time,"
- ATSAY 10 2 14 "since it tells the modem to write these settings to"
- ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
- ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
- ATSAY 13 2 14 "as you run this file."
- ATSAY 15 2 14 " <press ENTER to continue>"
- WAIT2:
- IF NOT HITKEY
- GOTO WAIT2
- ENDIF
- CLEAR
- SOUND 440 50
- BOX 0 0 4 56 14
- ATSAY 2 2 14 "TRAILBLAZER PLUS modem initialization... WORKING..."
- SET BAUDRATE 19200 ;Set up comm line
- SET PARITY NONE
- SET DATABITS 8
- SET STOPBITS 1
- SET DISPLAY OFF
- SET TXPACE 50
- TRANSMIT "AT&F^M" ;Get factory defaults
- PAUSE 1 ;if modem is set to 19200
- SET BAUDRATE 9600
- TRANSMIT "AT&F^M" ;Get factory defaults
- PAUSE 1 ;if modem is set to 9600
- TRANSMIT "ATS51=5^M" ;Set modem speed to 19200
- PAUSE 1
- SET BAUDRATE 19200
- TRANSMIT "AT S52=1^M" ;Set DTR to follow actual line state
- TRANSMIT "AT S53=1^M" ;Set CD to follow actual line state
- TRANSMIT "AT S58=2^M" ;Enable RTS/CTS handshaking
- TRANSMIT "AT S66=1^M" ;Lock DCE/DTE interface speed
- TRANSMIT "AT S68=2^M" ;Hardware flow control
- TRANSMIT "AT S11=55^M" ;Speed up dialing
- TRANSMIT "AT&W^M" ;Write settings to NRAM
- SET TXPACE 0
- CLEAR
- SET DISPLAY ON
- SOUND 440 50
- BOX 0 0 16 58 14
- ATSAY 2 2 14 "TRAILBLAZER PLUS modem initialization - COMPLETED!"
- ATSAY 4 2 14 "Your TELEBIT modem will now power up with the proper"
- ATSAY 5 2 14 "defaults for PROCOMM PLUS. You should now use the"
- ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
- ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
- ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
- ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
- ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
- ATSAY 11 2 14 "should be should be set to 19200 baud, as well as your"
- ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
- ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
- ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
- CURON
- LOCATE 17 0
-